home *** CD-ROM | disk | FTP | other *** search
-
- /*
- *
- * GDS208 : 円
- *
- */
-
- #include <stdio.h>
- #include <dos.h>
-
- unsigned char *GDS_append(unsigned char *wp,unsigned int size);
-
- void GDS_circle(unsigned char *wp,signed int x1,signed int y1,signed int r) {
-
- wp=GDS_append(wp,8);
- *(unsigned int *)(wp+0)=0x4000+12*32+6;
- *(signed int *)(wp+2)=x1;
- *(signed int *)(wp+4)=y1;
- *(signed int *)(wp+6)=r;
- }